home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / archiver / ltarv3.zip / LOCATE.DOC < prev    next >
Text File  |  1992-01-28  |  948b  |  41 lines

  1. Program :
  2.     LOCATE
  3.  
  4. Usage :
  5.     LOCATE [Filter] ["DOS command"]
  6.     Filter ::= files to be located, wildcards are allowed.
  7.     DOS command ::= DOS command that would be applied for located file,
  8.         in command, `$s' indicates that file itself (see Examples.)
  9.     /* quote marks cannot be omitted
  10.     */
  11.  
  12. Description :
  13.  
  14.     It is similar to Borland's TASM example WHEREIS but be improved.
  15.  
  16. Examples:
  17.  
  18.     (1):-    LOCATE
  19.     /* to show all files and files in sub-directories from current
  20.        directory
  21.     */
  22.  
  23.     (2):-    LOCATE *.c
  24.     /* to show all .c files and .c files in sub-directories from current
  25.        directory
  26.     */
  27.  
  28.     (3):-    LOCATE c:*.c
  29.     /* to show all .c files and .c files in sub-directories from drive C:'s
  30.        current directory
  31.     */
  32.  
  33.     (4):-    LOCATE c:\*.c
  34.     /* to show all .c files in the drive C: (from root directory)
  35.     */
  36.  
  37.     (5):-    LOCATE *.c "type $s"
  38.     /* to type all .c files and .c files in sub-directories from current
  39.        directory
  40.     */
  41.